Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
JavaScript Unicode 8.0 Normalization - NFC, NFD, NFKC, NFKD. Read <http://unicode.org/reports/tr15/> UAX #15 Unicode Normalization Forms.
The 'unorm' npm package provides Unicode normalization forms as specified in Unicode Standard Annex #15. It allows developers to normalize Unicode strings to ensure consistent representation of characters, which is crucial for string comparison, searching, and sorting.
Normalization to NFC
This feature normalizes a string to the NFC (Normalization Form C) form, which composes characters to their canonical composed form.
const unorm = require('unorm');
const str = '\u1E9B\u0323';
const normalizedStr = unorm.nfc(str);
console.log(normalizedStr);
Normalization to NFD
This feature normalizes a string to the NFD (Normalization Form D) form, which decomposes characters to their canonical decomposed form.
const unorm = require('unorm');
const str = '\u1E9B\u0323';
const normalizedStr = unorm.nfd(str);
console.log(normalizedStr);
Normalization to NFKC
This feature normalizes a string to the NFKC (Normalization Form KC) form, which composes characters to their compatibility composed form.
const unorm = require('unorm');
const str = '\u1E9B\u0323';
const normalizedStr = unorm.nfkc(str);
console.log(normalizedStr);
Normalization to NFKD
This feature normalizes a string to the NFKD (Normalization Form KD) form, which decomposes characters to their compatibility decomposed form.
const unorm = require('unorm');
const str = '\u1E9B\u0323';
const normalizedStr = unorm.nfkd(str);
console.log(normalizedStr);
The 'normalize-strings' package offers utilities for normalizing Unicode strings. It supports the same normalization forms as 'unorm' and includes additional utilities for string comparison and validation.
This is Unicode Normalizer in a Common JS module. I'm not affiliated with Matsuza, the original author of Unicode Normalizer.
npm install unorm
You can use this module as a polyfill for String.prototype.normalize, for example:
console.log('æøåäüö'.normalize('NFKD'));
The module uses some EcmaScript 5 features. Other browsers should use a compability shim, e.g. es5-shim.
This module exports four functions: nfc
, nfd
, nfkc
, and nfkd
; one for each Unicode normalization. In the browser the functions are exported in the unorm
global. In CommonJS environments you just require the module. Functions:
unorm.nfd(str)
– Canonical Decompositionunorm.nfc(str)
– Canonical Decomposition, followed by Canonical Compositionunorm.nfkd(str)
– Compatibility Decompositionunorm.nfkc(str)
– Compatibility Decomposition, followed by Canonical CompositionFor a longer example, see examples
directory.
var unorm = require('unorm');
var text =
'The \u212B symbol invented by A. J. \u00C5ngstr\u00F6m ' +
'(1814, L\u00F6gd\u00F6, \u2013 1874) denotes the length ' +
'10\u207B\u00B9\u2070 m.';
var combining = /[\u0300-\u036F]/g; // Use XRegExp('\\p{M}', 'g'); see example.js.
console.log('Regular: ' + text);
console.log('NFC: ' + unorm.nfc(text));
console.log('NFD: ' + unorm.nfd(text));
console.log('NFKC: ' + unorm.nfkc(text));
console.log('NFKD: * ' + unorm.nfkd(text).replace(combining, ''));
console.log(' * = Combining characters removed from decomposed form.');
As of November 2013. Longer term:
is_nfc
, is_nfd
, etc.To generate new unicode data, run:
cd src/data/src
javac UnormNormalizerBuilder.java
java UnormNormalizerBuilder
produced unormdata.js
contains needed table
Execute node benchmark/benchmark.js
to run simple benchmarks, if you do any changes which may affect performance.
This project includes the software package Unicode Normalizer 1.0.0. The software dual licensed under the MIT and GPL licenses. Here is the MIT license:
Copyright (c) 2008-2013 Matsuza <matsuza@gmail.com>, Bjarke Walling <bwp@bwp.dk>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
FAQs
JavaScript Unicode 8.0 Normalization - NFC, NFD, NFKC, NFKD. Read <http://unicode.org/reports/tr15/> UAX #15 Unicode Normalization Forms.
We found that unorm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.